home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / os2 / adaptor.zip / ADAPT.ZIP / adaptor / examples / bsp2 / readme < prev   
Text File  |  1993-03-26  |  2KB  |  59 lines

  1. Examples wit two-dimensional arrays
  2.  
  3. life.f: two dimensional cellular automata
  4.  
  5.    Output:
  6.         506 animals in iteration            1
  7.        1009 animals in iteration            2
  8.        1007 animals in iteration            3
  9.        2009 animals in iteration            4
  10.         999 animals in iteration            5
  11.        1991 animals in iteration            6
  12.        1987 animals in iteration            7
  13.        3963 animals in iteration            8
  14.         989 animals in iteration            9
  15.        1965 animals in iteration           10
  16.        1961 animals in iteration           11
  17.        3905 animals in iteration           12
  18.        1945 animals in iteration           13
  19.        3869 animals in iteration           14
  20.        3861 animals in iteration           15
  21.        7693 animals in iteration           16
  22.         975 animals in iteration           17
  23.        1919 animals in iteration           18
  24.        1915 animals in iteration           19
  25.        3795 animals in iteration           20
  26.         ....
  27.       20951 animals in iteration           96
  28.        1663 animals in iteration           97
  29.        2915 animals in iteration           98
  30.        2907 animals in iteration           99
  31.        5395 animals in iteration          100
  32.  
  33. flow.f: sequential algorithm for flow visualization
  34.  
  35.    - use sequential compiler to compare 
  36.    - link also with XLIB
  37.  
  38. flow.f9:  parallelized Fortran 90 version with global send
  39.  
  40.    - host program required, external calls
  41.    - uses XLIB (link host program with $(XLIB))
  42.  
  43.    At the moment the program will stop with:
  44.  
  45.         Index value 129 out of range
  46.         Fatal ERROR, will exit
  47.  
  48. flowm.f9:  parallelized Fortran 90 version with global send and mask
  49.  
  50.    - host program required, external calls
  51.    - uses XLIB (link host program with $(XLIB))
  52.  
  53.    This program tests the range with the mask, no more out of range
  54.  
  55. flow_add.f9: global send with mask and addition of values
  56.  
  57.    In this case one can see better where more flow particles are
  58.  
  59.